home *** CD-ROM | disk | FTP | other *** search
/ CD BIT 75 / CD BIT 75.iso / Software / gimp-2.0.5-i586-setup / gimp-2.0.5-i586-setup.exe / {app} / etc / gimp / 2.0 / gimprc next >
Encoding:
Text File  |  2004-09-26  |  19.1 KB  |  584 lines

  1. # This is the system-wide gimprc file.  Any change made in this file will
  2. # affect all users of this system, provided that they are not overriding the
  3. # default values in their personal gimprc file.
  4. # Lines that start with a '#' are comments. Blank lines are ignored.
  5. # By default everything in this file is commented out.  The file then
  6. # documents the default values and shows what changes are possible.
  7. # The variable ${gimp_dir} is set to the value of the environment variable
  8. # GIMP2_DIRECTORY or, if that is not set, the compiled-in default value is
  9. # used.  If GIMP2_DIRECTORY is not an absolute path, it is interpreted
  10. # relative to your home directory.
  11.  
  12. # Sets the temporary storage directory. Files will appear here during the
  13. # course of running the GIMP.  Most files will disappear when the GIMP exits,
  14. # but some files are likely to remain, so it is best if this directory not be
  15. # one that is shared by other users.  This is a single folder.
  16. # (temp-path "${gimp_dir}/tmp")
  17.  
  18. # Sets the swap file location. The gimp uses a tile based memory allocation
  19. # scheme. The swap file is used to quickly and easily swap tiles out to disk
  20. # and back in. Be aware that the swap file can easily get very large if the
  21. # GIMP is used with large images. Also, things can get horribly slow if the
  22. # swap file is created on a directory that is mounted over NFS.  For these
  23. # reasons, it may be desirable to put your swap file in "/tmp".  This is a
  24. # single folder.
  25. # (swap-path "${gimp_dir}")
  26.  
  27. # There is always a tradeoff between memory usage and speed.  In most cases,
  28. # the GIMP opts for speed over memory.  However, if memory is a big issue,
  29. # try to enable this setting.  Possible values are yes and no.
  30. # (stingy-memory-use no)
  31.  
  32. # On multiprocessor machines, if GIMP has been compiled with --enable-mp this
  33. # sets how many processors GIMP should use simultaneously.  This is an
  34. # integer value.
  35. # (num-processors 1)
  36.  
  37. # The tile cache is used to make sure the GIMP doesn't thrash tiles between
  38. # memory and disk. Setting this value higher will cause the GIMP to use less
  39. # swap space, but will also cause the GIMP to use more memory. Conversely, a
  40. # smaller cache size causes the GIMP to use more swap space and less memory. 
  41. # The integer size can contain a suffix of 'B', 'K', 'M' or 'G' which makes
  42. # GIMP interpret the size as being specified in bytes, kilobytes, megabytes
  43. # or gigabytes. If no suffix is specified the size defaults to being
  44. # specified in kilobytes.
  45. # (tile-cache-size 64M)
  46.  
  47. # Sets the level of interpolation used for scaling and other transformations.
  48. #  Possible values are none, linear and cubic.
  49. # (interpolation-type linear)
  50.  
  51. # Sets the plug-in search path.  This is a colon-separated list of folders to
  52. # search.
  53. # (plug-in-path "${gimp_dir}/plug-ins:${gimp_plug_in_dir}/plug-ins")
  54.  
  55. # Sets the module search path.  This is a colon-separated list of folders to
  56. # search.
  57. # (module-path "${gimp_dir}/modules:${gimp_plug_in_dir}/modules")
  58.  
  59. # Sets the environ search path.  This is a colon-separated list of folders to
  60. # search.
  61. # (environ-path "${gimp_dir}/environ:${gimp_plug_in_dir}/environ")
  62.  
  63. # Sets the brush search path.  This is a colon-separated list of folders to
  64. # search.
  65. # (brush-path "${gimp_dir}/brushes:${gimp_data_dir}/brushes")
  66.  
  67. #   This is a colon-separated list of folders to search.
  68. # (brush-path-writable "${gimp_dir}/brushes")
  69.  
  70. # Sets the pattern search path.  This is a colon-separated list of folders to
  71. # search.
  72. # (pattern-path "${gimp_dir}/patterns:${gimp_data_dir}/patterns")
  73.  
  74. #   This is a colon-separated list of folders to search.
  75. # (pattern-path-writable "${gimp_dir}/patterns")
  76.  
  77. # Sets the palette search path.  This is a colon-separated list of folders to
  78. # search.
  79. # (palette-path "${gimp_dir}/palettes:${gimp_data_dir}/palettes")
  80.  
  81. #   This is a colon-separated list of folders to search.
  82. # (palette-path-writable "${gimp_dir}/palettes")
  83.  
  84. # Sets the gradient search path.  This is a colon-separated list of folders
  85. # to search.
  86. # (gradient-path "${gimp_dir}/gradients:${gimp_data_dir}/gradients")
  87.  
  88. #   This is a colon-separated list of folders to search.
  89. # (gradient-path-writable "${gimp_dir}/gradients")
  90.  
  91. # Where to look for fonts.  This is a colon-separated list of folders to
  92. # search.
  93. # (font-path "${gimp_dir}/fonts:${gimp_data_dir}/fonts")
  94.  
  95. #   This is a colon-separated list of folders to search.
  96. # (font-path-writable "${gimp_dir}/fonts")
  97.  
  98. # Specify a default brush.  The brush is searched for in the specified brush
  99. # path.  This is a string value.
  100. # (default-brush "Circle (11)")
  101.  
  102. # Specify a default pattern. The pattern is searched for in the specified
  103. # pattern path.  This is a string value.
  104. # (default-pattern "Pine")
  105.  
  106. # Specify a default palette.  The palette is searched for in the specified
  107. # palette path.  This is a string value.
  108. # (default-palette "Default")
  109.  
  110. # Specify a default gradient.  The gradient is searched for in the specified
  111. # gradient path.  This is a string value.
  112. # (default-gradient "FG to BG (RGB)")
  113.  
  114. # Specify a default font.  The font is searched for in the fontconfig font
  115. # path.  This is a string value.
  116. # (default-font "Sans")
  117.  
  118. # When enabled, the selected brush will be used for all tools.  Possible
  119. # values are yes and no.
  120. # (global-brush yes)
  121.  
  122. # When enabled, the selected pattern will be used for all tools.  Possible
  123. # values are yes and no.
  124. # (global-pattern yes)
  125.  
  126. # When enabled, the selected palette will be used for all tools.  Possible
  127. # values are yes and no.
  128. # (global-palette yes)
  129.  
  130. # When enabled, the selected gradient will be used for all tools.  Possible
  131. # values are yes and no.
  132. # (global-gradient yes)
  133.  
  134. # When enabled, the selected font will be used for all tools.  Possible
  135. # values are yes and no.
  136. # (global-font yes)
  137.  
  138. # Sets the default image in the "File/New" dialog.  This is a parameter list.
  139. # (default-image
  140. #     (width 256)
  141. #     (height 256)
  142. #     (unit inches)
  143. #     (xresolution 72.000000)
  144. #     (yresolution 72.000000)
  145. #     (resolution-unit inches)
  146. #     (image-type rgb)
  147. #     (fill-type background-fill)
  148. #     (comment "Created with The GIMP"))
  149.  
  150. # Specify a default image grid.  This is a parameter list.
  151. # (default-grid
  152. #     (style intersections)
  153. #     (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000))
  154. #     (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000))
  155. #     (xspacing 10.000000)
  156. #     (yspacing 10.000000)
  157. #     (spacing-unit inches)
  158. #     (xoffset 0.000000)
  159. #     (yoffset 0.000000)
  160. #     (offset-unit inches))
  161.  
  162. # Sets the minimal number of operations that can be undone. More undo levels
  163. # are kept available until the undo-size limit is reached.  This is an
  164. # integer value.
  165. # (undo-levels 5)
  166.  
  167. # Sets an upper limit to the memory that is used per image to keep operations
  168. # on the undo stack. Regardless of this setting, at least as many undo-levels
  169. # as configured can be undone.  The integer size can contain a suffix of 'B',
  170. # 'K', 'M' or 'G' which makes GIMP interpret the size as being specified in
  171. # bytes, kilobytes, megabytes or gigabytes. If no suffix is specified the
  172. # size defaults to being specified in kilobytes.
  173. # (undo-size 4M)
  174.  
  175. # Sets the size of the previews in the Undo History.  Possible values are
  176. # tiny, extra-small, small, medium, large, extra-large, huge, enormous and
  177. # gigantic.
  178. # (undo-preview-size large)
  179.  
  180. # Sets the pluginrc search path.  This is a single filename.
  181. # (pluginrc-path "${gimp_dir}/pluginrc")
  182.  
  183. # Sets whether GIMP should create previews of layers and channels. Previews
  184. # in the layers and channels dialog are nice to have but they can slow things
  185. # down when working with large images.  Possible values are yes and no.
  186. # (layer-previews yes)
  187.  
  188. # Sets the default preview size for layers and channels.  Possible values are
  189. # tiny, extra-small, small, medium, large, extra-large, huge, enormous and
  190. # gigantic.
  191. # (layer-preview-size medium)
  192.  
  193. # Sets the size of the thumbnail saved with each image. Note that GIMP can
  194. # not save thumbnails if layer previews are disabled.  Possible values are
  195. # none, normal and large.
  196. # (thumbnail-size normal)
  197.  
  198. # Install a private colormap; might be useful on pseudocolor visuals. 
  199. # Possible values are yes and no.
  200. # (install-colormap no)
  201.  
  202. # Generally only a concern for 8-bit displays, this sets the minimum number
  203. # of system colors allocated for the GIMP.  This is an integer value.
  204. # (min-colors 144)
  205.  
  206. # Speed of marching ants in the selection outline.  This value is in
  207. # milliseconds (less time indicates faster marching).  This is an integer
  208. # value.
  209. # (marching-ants-speed 300)
  210.  
  211. # When enabled, the image window will automatically resize itself, when
  212. # zooming into and out of images.  Possible values are yes and no.
  213. # (resize-windows-on-zoom no)
  214.  
  215. # When enabled, the image window will automatically resize itself, whenever
  216. # the physical image size changes.  Possible values are yes and no.
  217. # (resize-windows-on-resize no)
  218.  
  219. # When enabled, this will ensure that each pixel of an image gets mapped to a
  220. # pixel on the screen.  Possible values are yes and no.
  221. # (default-dot-for-dot yes)
  222.  
  223. # When enabled, this will ensure that the full image is visible after a file
  224. # is opened, otherwise it will be displayed with a scale of 1:1.  Possible
  225. # values are yes and no.
  226. # (initial-zoom-to-fit yes)
  227.  
  228. # When enabled, the X server is queried for the mouse's current position on
  229. # each motion event, rather than relying on the position hint.  This means
  230. # painting with large brushes should be more accurate, but it may be slower. 
  231. # Perversely, on some X servers enabling this option results in faster
  232. # painting.  Possible values are yes and no.
  233. # (perfect-mouse yes)
  234.  
  235. # Sets the mode of cursor the GIMP will use.  Possible values are tool-icon,
  236. # tool-crosshair and crosshair.
  237. # (cursor-mode tool-icon)
  238.  
  239. # Context-dependent cursors are cool.  They are enabled by default. However,
  240. # they require overhead that you may want to do without.  Possible values are
  241. # yes and no.
  242. # (cursor-updating yes)
  243.  
  244. # When enabled, all paint tools will show a preview of the current brush's
  245. # outline.  Possible values are yes and no.
  246. # (show-brush-outline yes)
  247.  
  248. # Sets the text to appear in image window titles.  This is a format string;
  249. # certain % character sequences are recognised and expanded as follows:
  250. # %%  literal percent sign
  251. # %f  bare filename, or "Untitled"
  252. # %F  full path to file, or "Untitled"
  253. # %p  PDB image id
  254. # %i  view instance number
  255. # %t  image type (RGB, grayscale, indexed)
  256. # %z  zoom factor as a percentage
  257. # %s  source scale factor
  258. # %d  destination scale factor
  259. # %Dx expands to x if the image is dirty, the empty string otherwise
  260. # %Cx expands to x if the image is clean, the empty string otherwise
  261. # %l  the number of layers
  262. # %L  the number of layers (long form)
  263. # %m  memory used by the image
  264. # %n  the name of the active layer/channel
  265. # %P  the PDB id of the active layer/channel
  266. # %w  image width in pixels
  267. # %W  image width in real-world units
  268. # %h  image height in pixels
  269. # %H  image height in real-world units
  270. # %u  unit symbol
  271. # %U  unit abbreviation
  272. # (image-title-format "%D*%f-%p.%i (%t, %L) %z%%")
  273.  
  274. # Sets the text to appear in image window status bars.  This is a format
  275. # string; certain % character sequences are recognised and expanded as
  276. # follows:
  277. # %%  literal percent sign
  278. # %f  bare filename, or "Untitled"
  279. # %F  full path to file, or "Untitled"
  280. # %p  PDB image id
  281. # %i  view instance number
  282. # %t  image type (RGB, grayscale, indexed)
  283. # %z  zoom factor as a percentage
  284. # %s  source scale factor
  285. # %d  destination scale factor
  286. # %Dx expands to x if the image is dirty, the empty string otherwise
  287. # %Cx expands to x if the image is clean, the empty string otherwise
  288. # %l  the number of layers
  289. # %L  the number of layers (long form)
  290. # %m  memory used by the image
  291. # %n  the name of the active layer/channel
  292. # %P  the PDB id of the active layer/channel
  293. # %w  image width in pixels
  294. # %W  image width in real-world units
  295. # %h  image height in pixels
  296. # %H  image height in real-world units
  297. # %u  unit symbol
  298. # %U  unit abbreviation
  299. # (image-status-format "%n (%m)")
  300.  
  301. # Ask for confirmation before closing an image without saving.  Possible
  302. # values are yes and no.
  303. # (confirm-on-close yes)
  304.  
  305. # Sets the monitor's horizontal resolution, in dots per inch.  If set to 0,
  306. # forces the X server to be queried for both horizontal and vertical
  307. # resolution information.  This is a float value.
  308. # (monitor-xresolution 72.000000)
  309.  
  310. # Sets the monitor's vertical resolution, in dots per inch.  If set to 0,
  311. # forces the X server to be queried for both horizontal and vertical
  312. # resolution information.  This is a float value.
  313. # (monitor-yresolution 72.000000)
  314.  
  315. # When enabled, the GIMP will use the monitor resolution from the windowing
  316. # system.  Possible values are yes and no.
  317. # (monitor-resolution-from-windowing-system yes)
  318.  
  319. # Sets the size of the navigation preview available in the lower right corner
  320. # of the image window.  Possible values are tiny, extra-small, small, medium,
  321. # large, extra-large, huge, enormous and gigantic.
  322. # (navigation-preview-size medium)
  323.  
  324. # Sets the default settings for the image view.  This is a parameter list.
  325. # (default-view
  326. #     (show-menubar yes)
  327. #     (show-rulers yes)
  328. #     (show-scrollbars yes)
  329. #     (show-statusbar yes)
  330. #     (show-selection yes)
  331. #     (show-layer-boundary yes)
  332. #     (show-guides yes)
  333. #     (show-grid no)
  334. #     (padding-mode default)
  335. #     (padding-color (color-rgba 1.000000 1.000000 1.000000 1.000000)))
  336.  
  337. # Sets the default settings used when an image is viewed in fullscreen mode. 
  338. # This is a parameter list.
  339. # (default-fullscreen-view
  340. #     (show-menubar no)
  341. #     (show-rulers no)
  342. #     (show-scrollbars no)
  343. #     (show-statusbar no)
  344. #     (show-selection no)
  345. #     (show-layer-boundary no)
  346. #     (show-guides no)
  347. #     (show-grid no)
  348. #     (padding-mode custom)
  349. #     (padding-color (color-rgba 0.000000 0.000000 0.000000 1.000000)))
  350.  
  351. # When enabled, an image will become the active image when its image window
  352. # receives the focus. This is useful for window managers using "click to
  353. # focus".  Possible values are yes and no.
  354. # (activate-on-focus yes)
  355.  
  356. # Sets the size of the checkerboard used to display transparency.  Possible
  357. # values are small-checks, medium-checks and large-checks.
  358. # (transparency-size medium-checks)
  359.  
  360. # Sets the manner in which transparency is displayed in images.  Possible
  361. # values are light-checks, gray-checks, dark-checks, white-only, gray-only
  362. # and black-only.
  363. # (transparency-type gray-checks)
  364.  
  365. # This is the distance in pixels where Guide and Grid snapping activates. 
  366. # This is an integer value.
  367. # (snap-distance 8)
  368.  
  369. # Tools such as fuzzy-select and bucket fill find regions based on a
  370. # seed-fill algorithm.  The seed fill starts at the initially selected pixel
  371. # and progresses in all directions until the difference of pixel intensity
  372. # from the original is greater than a specified threshold. This value
  373. # represents the default threshold.  This is an integer value.
  374. # (default-threshold 15)
  375.  
  376. # When enabled, the GIMP will use a different info window per image view. 
  377. # Possible values are yes and no.
  378. # (info-window-per-display no)
  379.  
  380. # When enabled, the GIMP will not save if the image is unchanged since
  381. # opening it.  Possible values are yes and no.
  382. # (trust-dirty-flag no)
  383.  
  384. # Remember the current tool, pattern, color, and brush across GIMP sessions. 
  385. # Possible values are yes and no.
  386. # (save-device-status no)
  387.  
  388. # Save the positions and sizes of the main dialogs when the GIMP exits. 
  389. # Possible values are yes and no.
  390. # (save-session-info yes)
  391.  
  392. # Let GIMP try to restore your last saved session on each startup.  Possible
  393. # values are yes and no.
  394. # (restore-session yes)
  395.  
  396. # Enable to display a handy GIMP tip on startup.  Possible values are yes and
  397. # no.
  398. # (show-tips yes)
  399.  
  400. # Enable to display tooltips.  Possible values are yes and no.
  401. # (show-tool-tips yes)
  402.  
  403. # When enabled, menus can be torn off.  Possible values are yes and no.
  404. # (tearoff-menus yes)
  405.  
  406. # When enabled, you can change keyboard shortcuts for menu items by hitting a
  407. # key combination while the menu item is highlighted.  Possible values are
  408. # yes and no.
  409. # (can-change-accels no)
  410.  
  411. # Save changed keyboard shortcuts when the GIMP exits.  Possible values are
  412. # yes and no.
  413. # (save-accels yes)
  414.  
  415. # Restore saved keyboard shortcuts on each GIMP startup.  Possible values are
  416. # yes and no.
  417. # (restore-accels yes)
  418.  
  419. # How many recently opened image filenames to keep on the File menu.  This is
  420. # an integer value.
  421. # (last-opened-size 10)
  422.  
  423. # GIMP will warn the user if an attempt is made to create an image that would
  424. # take more memory than the size specified here.  The integer size can
  425. # contain a suffix of 'B', 'K', 'M' or 'G' which makes GIMP interpret the
  426. # size as being specified in bytes, kilobytes, megabytes or gigabytes. If no
  427. # suffix is specified the size defaults to being specified in kilobytes.
  428. # (max-new-image-size 64M)
  429.  
  430. # Sets the theme search path.  This is a colon-separated list of folders to
  431. # search.
  432. # (theme-path "${gimp_dir}/themes:${gimp_data_dir}/themes")
  433.  
  434. # The name of the theme to use.  This is a string value.
  435. # (theme "Default")
  436.  
  437. # When enabled, pressing F1 will open the help browser.  Possible values are
  438. # yes and no.
  439. # (use-help yes)
  440.  
  441. # Specifies the language preferences used by the help system. This is a
  442. # colon-separated list of language identifiers with decreasing priority. If
  443. # empty, the language is taken from the user's locale setting.  This is a
  444. # string value.
  445. # (help-locales "")
  446.  
  447. # Sets the browser used by the help system.  Possible values are gimp and
  448. # web-browser.
  449. # (help-browser gimp)
  450.  
  451. # Sets the external web browser to be used.  This can be an absolute path or
  452. # the name of an executable to search for in the user's PATH. If the command
  453. # contains '%s' it will be replaced with the URL, else the URL will be
  454. # appended to the command with a space separating the two.  This is a single
  455. # filename.
  456. # (web-browser "mozilla %s")
  457.  
  458. # The window type hint that is set on the toolbox. This may affect how your
  459. # window manager decorates and handles the toolbox window.  Possible values
  460. # are normal and utility.
  461. # (toolbox-window-hint normal)
  462.  
  463. # The window type hint that is set on dock windows. This may affect the way
  464. # your window manager decorates and handles dock windows.  Possible values
  465. # are normal and utility.
  466. # (dock-window-hint normal)
  467.  
  468. # Where to search for fractals used by the Fractal Explorer plug-in.  This is
  469. # a colon-separated list of folders to search.
  470. # (fractalexplorer-path "${gimp_dir}/fractalexplorer:${gimp_data_dir}/fractalexplorer")
  471.  
  472. # Where to search for Gfig figures used by the Gfig plug-in.  This is a
  473. # colon-separated list of folders to search.
  474. # (gfig-path "${gimp_dir}/gfig:${gimp_data_dir}/gfig")
  475.  
  476. # Where to search for gflares used by the GFlare plug-in.  This is a
  477. # colon-separated list of folders to search.
  478. # (gflare-path "${gimp_dir}/gflare:${gimp_data_dir}/gflare")
  479.  
  480. # Where to search for data used by the Gimpressionist plug-in.  This is a
  481. # colon-separated list of folders to search.
  482. # (gimpressionist-path "${gimp_dir}/gimpressionist:${gimp_data_dir}/gimpressionist")
  483.  
  484. # This path will be searched for scripts when the Script-Fu plug-in is run. 
  485. # This is a colon-separated list of folders to search.
  486. # (script-fu-path "${gimp_dir}/scripts:${gimp_data_dir}/scripts")
  487.  
  488.